4d2b31bd27a87b88a75fa5e43aed73b9ffdb2224,src/main/java/openperipheral/addons/selector/TileEntitySelector.java,TileEntitySelector,getSelection,#Vec3#number#,323

Before Change


	}

	public AxisAlignedBB getSelection(Vec3 hitVec, int side) {
		final ForgeDirection rotation = getOrientation().up();
		if (side == rotation.ordinal()) {
			int gridSize = getGridSize();

After Change


	}

	public AxisAlignedBB getSelection(Vec3 hitVec, int side) {
		final Orientation orientation = getOrientation();
		final Vec3 mappedVec = BlockSpaceTransform.instance.mapWorldToBlock(orientation, hitVec.xCoord - xCoord, hitVec.yCoord - yCoord, hitVec.zCoord - zCoord);

		final int gridSize = getGridSize();